home *** CD-ROM | disk | FTP | other *** search
- /*
- * ToDoInspector - controller for the inspector panel
- *
- * You may freely copy, distribute and reuse the code in this example.
- * This code is provided AS IS without warranty of any kind, expressed
- * or implied, as to its fitness for any particular use.
- *
- * Copyright 1995 Ralph Zazula (rzazula@next.com). All Rights Reserved.
- *
- */
-
- #import <appkit/appkit.h>
-
- @interface ToDoInspector:Object
- {
- id typeMatrix;
- id statusMatrix;
- id privateSwitch;
- id completedSwitch;
- id createdText;
- id priorityText;
- id completedText;
- id showPendingSwitch;
- id showCompletedSwitch;
- id showPrivateSwitch;
- id window;
- id _reservedToDoInspector1;
- }
-
- - window;
- - (int)type;
- - switchType:sender;
- - completed:sender;
- - private:sender;
- - toggleShowPending:sender;
- - toggleShowCompleted:sender;
- - toggleShowPrivate:sender;
- - windowDidUpdate:sender;
-
- @end
-
-